home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / AlexNeXTSTEPSource / Source / Chapter8_Prefs / Money / PrefsController.h < prev    next >
Text File  |  1995-06-12  |  456b  |  24 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface PrefsController:Object
  4.  
  5. {
  6.     id prefsPanel;
  7.     id switchView;
  8.     id promptSwitch;    // switchbutton outlet
  9.                 // to control quit prompt
  10.     id truncateSwitch;    // switchbutton outlet
  11.                 // to control truncation
  12.     id popUpButton;        // trigger button for popuplist
  13. }
  14.  
  15. + initialize;
  16. - awakeFromNib;
  17. - displayPrefsPanel:sender;
  18. - setTruncate:sender;
  19. - (BOOL)shouldTruncate;
  20. - displayPrefsPanel:sender;
  21. - showAccessoryView:sender;
  22.  
  23. @end
  24.